@font-face {
    font-family: 'NotoSans'; 
    src: url('Fonts/NotoSans-Regular.ttf') format('truetype'); 

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSans'; 
    src: url('Fonts/NotoSans-Medium.ttf') format('truetype'); 
    
    font-weight: medium;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSans'; 
    src: url('Fonts/NotoSans-Bold.ttf') format('truetype'); 
    
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSans'; 
    src: url('Fonts/NotoSans-Italic.ttf') format('truetype'); 
    
    font-weight: normal;
    font-style: italic;
}

body{
    font-family: 'NotoSans', sans-serif;
}

.Logo_Background{
    background-color: black;
    border-radius: 50px; 

    width: 100px;
    height: 50px;

    display: flex;
    align-items: center; /* Центрує по вертикалі */
    justify-content: center; 

}

.Logo_size{
    width: 40px;
    height: 40px;
}

.Titles{
  
    margin: 0 auto;
    
    display: flex;
    align-items: center; /* Центрує по вертикалі */
    justify-content: center; 
    color: white;
    font-weight: bold; /* Жирний шрифт */
    
    font-size: 16px;

    width: 200px;  /* Ширина */
    height: 50px; /* Висота */
    background-color: black; /* Колір */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    
    border-radius: 50px;
}

.Burger-menu_Button{
    background-color: #136BCE;
    border-radius: 50px;
    width: 50px; 
    height: 50px;
}


.Text_Style-1 {    

    margin-top: 20px;
    padding: 20px;
    background: white;
    color: black;
    text-align: justify;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.Big_Text {
    font-weight: bold;
    text-align: left;
    font-size: 18px;
}


.HomePage_Buttons{
    display: inline-block;

    margin-top: 20px;
    margin-inline: 20px;
    align-items: center;

    width: 300px;
    height: 150px;

    background-color: #136BCE;

    border: none;
    border-radius: 30px;

    font-weight: bold;
    color: white;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.Button_Content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрує елементи по горизонталі */
    justify-content: center; /* Центрує елементи по вертикалі */
}

.Icons {

    width: 60px; 
    height: 60px; 
    margin-block: 10px;
}

.Icons_for_GoButtons {
    margin-right: 10px;

    float: right;
    width: 30px;
    height: 30px;
}


